home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-08-12 | 1.2 KB | 47 lines | [TEXT/MPS ] |
- ;
- ; File: Memory.a
- ;
- ; Contains: Memory Manager Interfaces.
- ;
- ; Version: Technology: System 7.5
- ; Release: Universal Interfaces 3.0.1
- ;
- ; Copyright: © 1985-1997 by Apple Computer, Inc., all rights reserved
- ;
- ; Bugs?: Please include the the file and version information (from above) with
- ; the problem description. Developers belonging to one of the Apple
- ; developer programs can submit bug reports to:
- ;
- ; devsupport@apple.com
- ;
- ;
- ;
- ; NOTE
- ;
- ; The file "Memory.h" has been renamed to "MacMemory.h" to prevent a collision
- ; with the "Memory.h" available on other platforms. MacOS only developers may
- ; continue to use #include <Memory.h>. Developers doing cross-platform work where
- ; Memory.h also exists should change their sources to use #include <MacMemory.h>
- ;
-
- IF &TYPE('__MEMORY__') = 'UNDEFINED' THEN
- __MEMORY__ SET 1
-
- IF &TYPE('__CONDITIONALMACROS__') = 'UNDEFINED' THEN
- include 'ConditionalMacros.a'
- ENDIF
-
- IF TARGET_OS_MAC THEN
- IF &TYPE('__MACMEMORY__') = 'UNDEFINED' THEN
- include 'MacMemory.a'
- ENDIF
- ELSE
- ;
- ; If you get here, your development environment is messed up.
- ; This file is for MacOS development only.
- ;
-
- ENDIF ; TARGET_OS_MAC
- ENDIF ; __MEMORY__
-
-